widget: make sure to check all children for allocation needs
authorCosimo Cecchi <cosimoc@gnome.org>
Sun, 28 Feb 2016 18:58:06 +0000 (10:58 -0800)
committerCosimo Cecchi <cosimoc@gnome.org>
Sun, 28 Feb 2016 20:30:16 +0000 (12:30 -0800)
commit8e1368e6de98dd0414f462c851386573465f331a
treef1a0b746c11a8ff0ba02263e5d418d0ebacf1107
parent187027942c2878a76f569c70b931ac424de9f4a5
widget: make sure to check all children for allocation needs

GtkWidget uses gtk_container_foreach() to iterate over children and
check whether they need their allocation reset.
However, that leaves out internal children, such as scrollbars of a
GtkScrolledWindow. Use gtk_container_forall() instead.
gtk/gtkwidget.c